Entry 入口配置
https://webpack.js.org/concepts/entry-points
module.exports =
{
entry: './src/index.jsx', // 等价 { main: './src/index.jsx' }
// 或
entry: {
home: './src/home/index.jsx',
about: './src/about/index.jsx',
},
}
入口配置可以生成对应的 入口chunk
需要配合 Output 出口配置